Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 512 Bytes

File metadata and controls

24 lines (16 loc) · 512 Bytes

This file is a cheatsheet for Git commands. Please add and reorganize as you see fit.

-- Pulling the latest version. (While in dc-flex, master branch) git pull origin master // git branch - This will list all of your existing branches.

-- Creating a branch to work make changes. git checkout -b "branchname"

-- Pushing to github. git add . git commit -m "description" git push --set-upstream origin "branchname"

-- Send pull request on Github.

-- Useful Git Commands: git status git branch

-- Git Flags: