Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Open up Git Bash.

  2. Navigate to the folder where you store your repos.

    Code Block
    cd /C/Users/lemi/source/repos/

  3. Update repo.

    Code Block
    git fetch

  4. Navigate to correct branch (if needed). The current branch is in brackets beside the path.

    Image RemovedLine 1 is to switch to an existing branch, Line 2 is if Image Added

  5. If you want to create a new branch .named “branch-name”:

    Code Block
    git checkout -b new-branch-name
    

  6. To switch to an existing branch named “branch-name”:

    Code Block
    git checkout -b new-branch-name

  7. Set upstream branch to track remote branch.

    Code Block
    git push -u origin branch-name

  8. Stage files to be committed (add to git tracking). The below command add all files.

    Code Block
    git add .

    or if you have deleted files you want to stage. Otherwise, the above statement does not stage deletions (i.e.: delete files from the repo):

    Code Block
    git add -A

  9. Commit changes.

    Code Block
    git commit -m "message"

  10. Push changes to remote.

    Code Block
    git push

  11. All changes should now be in DevOps branch.

...