About 81,700 results
Open links in new tab
  1. Branching and merging best practices in Git - Stack Overflow

    Jul 5, 2014 · We have a developer team of 4 and have recently moved to Git. We want to learn best practices regarding workflow with branching and merging. We are using a lightweight …

  2. How does git branch for 4 different environment - Stack Overflow

    Aug 27, 2019 · You can work on multiple branches of same remote repository using different local folders for each branch, using git worktree feature. Earlier, you can only have one local …

  3. git with development, staging and production branches

    "A Successful Git Branching Model" is a bit complex for smaller projects with only few people involved. I prefer simpler method, where development is done in master branch and stable …

  4. How do you switch between branches in Visual Studio Code with …

    When in the Visual Studio Code IDE, do the following: on the bottom left, press on the Git branch which will give a list: Select a ref to checkout select one of the branches of the remote branch.

  5. Checkout multiple git repos into same Jenkins workspace

    Feb 13, 2013 · We are using git-repo to manage our multiple GIT repositories. There is also a Jenkins Repo plugin that allows to checkout all or part of the repositories managed by git-repo …

  6. github - What is a "stale" git branch? - Stack Overflow

    Mar 18, 2015 · Hence git remote prune. That is the main definition for stale branch: a remote tracking branch (a local reference of a remote repo branch) which no longer tracks anything …

  7. Git branch management - Stack Overflow

    Nov 28, 2019 · Hi, you may checkout and create the new branch by "git checkout -b namenewbranch". After that add and commit your changes to that branch. "git status" and …

  8. git - Jenkins - how to build a specific branch - Stack Overflow

    Aug 20, 2015 · But when I'd like to build a specific branch manually (without new changes in GIT) I click "Build now" but it always builds the latest checked out branch. Also tried various build …

  9. Managing many git repositories - Stack Overflow

    May 3, 2009 · That will simply show them in a list of local repositories including a dense status information inspired by posh-git. This contains the current branch and further stuff like file edits …

  10. How to manage the version number in Git? - Stack Overflow

    As you say, versioning issues are usually solved in git using branch and tags (like the semantic versioning pattern). The better way is to use git to track only changes in the codebase, …