Git Product home page Git Product logo

Comments (3)

mpalmer avatar mpalmer commented on July 18, 2024

"Giddyup could handle checking out and working with specific branches and tags"

Honestly, I'm not sure it can -- or at least, it doesn't make sense to.

Giddyup doesn't actually checkout or otherwise work with any references other than the SHA of the commit you give it. It has no concept of a branch to track, or anything of that nature. You could change it to do that, rather than work with the SHA directly, except that you'd have to use the post-update hook, which means you lose the ability to "reject" the commit if the deployment didn't happen (which means you need a dummy commit to actually make the deploy happen if it was a transient failure).

Sure, you could change the code slightly so that instead of rejecting a push to anything other than refs/heads/master, you can specify (via the config) a ref you must push to, but I'm really not sure what you gain from this -- you can easily teach git what to push to which remotes, so a git push staging, if your staging remote is configured correctly, should only push from the appropriate local branch to the master branch in the giddyup repo. If you've got people who'll accidentally type git push production instead of git push staging, then it's not such a stretch to assume they'll accidentally type git push production production instead of git push staging staging.

If you still think this is a good idea, I'll merge a patch that doesn't change default behaviour (should only be about 2 lines of code, plus some documentation), but I'm not going to implement it myself. Re-open if you put together a patch.

from giddyup.

Thinkscape avatar Thinkscape commented on July 18, 2024

Well, the main problem is that Giddyup forces me to use master branch, while it is quite common to build a project on different branches - i.e. for feature testing. Consider one repo, that has a master (production) and multiple feature branches. Now I want to deploy a devel. server for testing a specific feature. All activity is feature/foobar branch, and I'd like to push changes to my dev server...

Because master is hardcoded, giddup is useless in such scenario.

from giddyup.

mpalmer avatar mpalmer commented on July 18, 2024
git push dev feature/foobar:master

from giddyup.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.