Skip to content

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

Cmds

... git init # turn this folder into a repo (initializes) git add # adds one file to the stage git add -A # Add all changed, created, and deleted files to the stage git commit -m '' # commit once staged git branch # list of branches and ehats chekckout with a * git checkout -b # Creates new local branch (if not there)

git merge # merges other branch to the one currently checked out git checkout # Change to the branch

git log # Show commit history clear #clean up ui of terminal

git remote add # Add a new remote, connect to github git push origin # Sync up to github, any branch git pull origin # Sync down from github to local and merging

git reset --hard # Go back in time to id/tag number git tag -a '' -m '' # Tag the current commit of the current branch git push origin -- tags # Tags push seperate ...

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors