When using Git I usually use git add --all and then commit. I’m using SSH SVN through a terminal, and I want to add a file, but what is the command?
When using Git I usually use git add –all and then commit. I’m using
Share
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.
svn add <file>; the file then is “marked” for addition. Next time you commit, the file will be added to the repository.So if you want to only add one file into the repository, use
svn add <file>followed bysvn commit <file>.