Re: Tracking a branch using StGIT
From: Santi <hidden>
Date: 2016-06-15 22:42:40
2006/9/15, Catalin Marinas [off-list ref]:
On 15/09/06, Rajkumar S [off-list ref] wrote:quoted
I am using StGIT to track a branch of a remote git repository (actually a remote cvs repository, which I am tracking cvsimport)[...]quoted
The .git/remotes/origin is URL: /usr/local/pfSense/upstream/pfSense/.git Pull: refs/heads/master:refs/heads/origin Pull: refs/heads/avendor:refs/heads/avendor Pull: refs/heads/Package-Reorg-2005:refs/heads/Package-Reorg-2005 Pull: refs/heads/RELENG_1:refs/heads/RELENG_1 My requirement is to track RELENG_1 branch with StGIT while maintaining my own patches. but when I do a stg pull the messages are:[...]quoted
It seems StGIT is trying to merge the origin branch from remote to RELENG_1 of local. Is there a way to get RELENG_1 of remote to merge with MyBranch (clone of "RELENG_1") of local?After StGIT pops all the patches, it just calls "git pull origin". My understanding of GIT is that this should update local RELENG_1 with the remote RELENG_1 from the "origin" repository. Anything wrong with my assumptions?
No. But the it merge the first pull line in .git/remotes/origin into the current branch. So he only has to put the RELENG_1 line the first, as: URL: /usr/local/pfSense/upstream/pfSense/.git Pull: refs/heads/RELENG_1:refs/heads/RELENG_1 Pull: refs/heads/master:refs/heads/origin Pull: refs/heads/avendor:refs/heads/avendor Pull: refs/heads/Package-Reorg-2005:refs/heads/Package-Reorg-2005 Santi