Please enable JavaScript.
Coggle requires JavaScript to display documents.
GitHub, Workspace, Remote Repository, pwd
thư mục chính - Coggle Diagram
-
-
-
pwd
thư mục chính
setup the project folder
Command listing
[
pwd
mkdir projects
cd projects
pwd
]
Git Configuration
[
git version
git config -global user.name "Thuqui".
git config -global user.email "none24099@gmail.com"
git config -global --list
]Copy the repository(clone)
[
git clone https://github/....
ls
cd github-demo
ls
git status
]The Fistcommit
Command listing
[
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
]publishing changes to github
Command listing
[
git push origin master
]