We are using git for our local repository and Code Collab as our code review tool. Everything seems to work, but when I click Add Changes… no files are ever picked up as changed. I always have to use Add Git Diffs… instead.
We are running v6.0.6018
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.
‘Add Changes’ adds what would be committed when you run
git commit, and it sounds like you’re agit commit -auser.You should check out 7.0! There is an option (named cryptically ‘git-skip-index’) that when set presumes that you’re going to commit with
-a. There is also a new ‘Add Unpushed Commits’ feature that might convince you to review committed changes instead.