Re: [git-users] git workflow (testing branch, then rolling back to master branch)

2013-09-20 Thread Christian Koep
Hey, this helped a lot! thank you very much On Friday, September 20, 2013 10:48:35 AM UTC+2, Gergely Polonkai wrote: > > Hello, > > how about this? > > git fetch origin hotfix.module-xxx > git checkout -b hotfix.module-xxx origin/hotfix.module-xxx > (compile, test, whatever) > git checkout master

Re: [git-users] git workflow (testing branch, then rolling back to master branch)

2013-09-20 Thread Gergely Polonkai
Hello, how about this? git fetch origin hotfix.module-xxx git checkout -b hotfix.module-xxx origin/hotfix.module-xxx (compile, test, whatever) git checkout master Maybe there's a shorthand for fetch & checkout -b. I'm not behind git --help right now to check. It worked for me several times this

[git-users] git workflow (testing branch, then rolling back to master branch)

2013-09-20 Thread Christian Koep
hello, I'm currently trying to realise the following git workflow in our team: *Our Infrastructure:* We have a remote repository called "dev". it contains puppet modules / puppet source code. The source code gets frequently pulled into our puppet masters file system /modules/dev. *Example workf