Git Quick Start Commands



Command Listing, Part 1

pwd
mkdir projects
cd projects
pwd


Command Listing, Part 2
git version
git config --global user.name "B-One IT"
git config --global user.email "bone@git.training"
git config --global --list
git clone github-https-url # paste in your GitHub HTTPS clone URL
ls
cd github-demo
ls
git status
echo "Test Git Quick Start demo" >> start.txt
ls
cat start.txt
git status
git add start.txt
git status
git commit -m "Adding start text file"
git status
git push origin master

Publicar un comentario

0 Comentarios