I have this local directory /Users/OSX/Documents/Git/
where I initialized as my git by git init
.
How can I push an entire library e.g. /Users/OSX/Documents/Project/Test
to my git repository?
/Users/OSX/Documents/Project/Test
into your actual git repo so it can be tracked/Users/OSX/Documents/Git
git add Test
to add the Test directory to be tracked by gitgit commit -m "Added Test to repo"
to commit it to the repo