HTCondor Project List Archives



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-devel] how to merge manual



> BEGIN # Set up once, not every time
> git config remote.origin.push V7_6_0-branch:V7_6_0-branch
> git config remote.origin.push V7_6-branch:V7_6-branch
> git config remote.origin.push master:master

To be accurate, these lines should have been
BEGIN # Set up once, not every time
git config --add remote.origin.push V7_6_0-branch:V7_6_0-branch
git config --add remote.origin.push V7_6-branch:V7_6-branch
git config --add remote.origin.push master:master

Nathan Panike