Skip to content

Instantly share code, notes, and snippets.

@link2qaiser
Last active August 3, 2020 20:30
Show Gist options
  • Save link2qaiser/40453d323d295060a7d68a1971a45fac to your computer and use it in GitHub Desktop.
Save link2qaiser/40453d323d295060a7d68a1971a45fac to your computer and use it in GitHub Desktop.
##CREATE NEW BRANCH AND PUSHED
git checkout -b development
git push -u origin development
## UPDATE .gitignore
//First commit any outstanding code changes, and then, run this command:
git rm -r --cached .
//This removes any changed files from the index(staging area), then just run:
git add .
//Commit
git commit -m "UPDATE .gitignore"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment