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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
/Users/OSX/Documents/Project/Testinto your actual git repo so it can be tracked/Users/OSX/Documents/Gitgit add Testto add the Test directory to be tracked by gitgit commit -m "Added Test to repo"to commit it to the repo