Skip to content

mehblahwhatever/GitNotes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 

Repository files navigation

GitNotes

Set up project

git init
echo FILE
git add FILE
git commit -m "first commit"
git remote add origin https://github.com/mehblahwhatever/GitNotes.git
git push -u origin master

Make a commit

echo NEW_FILE
git add NEW_FILE
git commit -m "second commit"
git push -u origin master 

Switch to a new branch

git branch NEW_BRANCH
git checkout NEW_BRANCH

Push a new branch

git push -u origin NEW_BRANCH

Merge branch into master

git checkout master
git merge NEW_BRANCH
git push -u origin master

Download copy of existing project (creates sub-folder)

git clone https://github.com/mehblahwhatever/GitNotes.git

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published