Monday, 26 April 2021

Managing Github repository for custom app

Creating Github repository

echo "# custext" >> README.md

git init

git add README.md

git commit -m "first commit"

git branch -M main

git remote add origin https://github.com/valignit/custext.git

git push -u origin main


Updating Github repository

git status

git add .

git commit -m "v-x.y"

git push


No comments:

Post a Comment