Skip to content

mxvish/git-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

git-template

git command template

Execute each command from the top one.

git init .
git add $FILE
git add * #all files except for hidden files
git add . #all hidden files
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/$PATH.git
git pull origin main
git push -u origin main