git
github desktop changed their logo :O
Healthy Hippopotamus
github desktop changed their logo :O
# add files to exisitng
git add .
git commit -m "Message"
git push
echo "# learnwithshahin" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:itsmdshahin/learnwithshahin.git
git push -u origin main
root ;; 作業ディレクトリ
├ test.txt ;; 作業ファイル
└ .git ;; Gitディレクトリ
├ index ;; ステージング・エリア
├ config
...
echo "# AmberSafety" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/n54/AmberSafety.git
git push -u origin main
git remote add origin https://github.com/sandy1310/content.git
git branch -M main
git push -u origin main
echo "# Airline-Booking-System" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:sanjanabagodi/Airline-Booking-System.git
git push -u origin main
echo "# projet-tummurank-" >> README.md
git init
git add
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/doxandem/projet-tummurank-.git
git push -u origin main
echo "# walletapp-with-SpringBoot-" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/dollarkid1/walletapp-with-SpringBoot-.git
git push -u origin main
//To see all the created branch within a repository
$ git branch -a