We are quite new to GIT and Sourcetree, and things are going pretty well. Unfortunately for me, I have become one of the go-to guys for when new team members come onboard.
We have a process workflow that works well, but I keep thinking there may be a better (quicker/simpler) way to update feature branches.
Specifically: We never work on develop itself, every bit of work however small is done on it's own branch, and a pull request enforced for merging back to develop (all good so far).
The problem arises when other developers have updated our develop branch, we encourage everyone to update their own feature branches often, and the sequence we show them is:
Is there a way to achieve this in Sourcetree without having to switch branches?
Many thanks.
If you want to stay in SourceTree, you can do a fetch (doesn't matter what branch is checked out), then merge directly from the remote develop branch by expanding the >Remotes branch list, and right clicking on that develop (probably origin/develop).
The Pull operation currently performs a Fetch for you, so you'll want to make sure you do this manually since you're using Merge instead of Pull.
+1 for this, I teach our developers to stay in the feature branch, pull/fetch, merge origin/develop into the feature branch and push the merge. Also, most of the time it makes no difference whether they merge often, unless you have a small codebase with many developers. So I would not tell them to merge often.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Many thanks. Just tried this and it does what I expect. Will talk with our new to GIT developers and show the m this method.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm a CLI guy too, and I'd recommend your guys become so too if possible...
As well as what Chris says, we all use "git up", or for windows, which will update all your branches, including stashing changes if necessary, and rebasing your feature branch if you are sharing it.
Then generally we rebase our feature branch ("git rebase develop") on top of develop/master, which keeps things nice and clear.
Shameless plug: I wrote a few notes about how we improved our PR process here: http://www.adaptavist.com/w/inside-adaptavists-stash-pull-request-workflow/. What's not in that, I don't think, is we use an event handler to stop people create PRs until they have merged/rebased. This gives us the best likelihood that when people come to review it won't already be conflicted, and that the build will be the same as the one done when merged.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is possible in Windows version of Sourcetree, but not on mac. I have no idea why. It is very simple - you just right click a branch and choose "fetch branch". It makes `git fetch origin branch-name:branch-name`. If branch can be fetched with ffd, it will succeed.
I really hope this will be implemented also in Sourcetree for mac.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I cannot overstate how much I would appreciate this feature.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Why is this not possible in mac :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm a command line guy, so I can't really help you with source tree, but...
git fetch origin develop:develop
is how I would normally do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm, not sure either CLI or installing a different GIT are going to cut it with other developers in our company....
Many are CLI-phobics
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I personally prefer to do this in command line too.
There are couple more options in merge within sourcetree -
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.