[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-devel] how to merge manual
- Date: Tue, 2 Aug 2011 08:35:00 -0500
- From: Nathan Panike <nwp@xxxxxxxxxxx>
- Subject: 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