# git版本
git version
# 查看当前所处路径
pwd
# 查看当前目录下有哪些文件
ls -l
# 回到主目录
cd(cd ..回到上一层)
# 切换目录change directory
cd Desktop
# 创建新目录
mkdir markdown-practice
# 创建新文件
touch README.md
# 输出文件
cat README.md
# 中断命令
control C
# 初始化Git仓库
git init
修改
# 暂存文件的改动,添加到提交列表里
git add README.md
# 生成一次提交,提交已暂存文件的改动
git commit -m "git的使用方法"
[# 添加一个远程仓库地址
git remote add github git@github.com:Stella0621/markdown-practice.git
# 向远程仓库推送
git push (github master:master 前面是本地分支,后面是远程分支)
# 查看已添加的远程仓库地址
git remote -v
# 查看当前git仓库中的文件状态
git status
888
-
Notifications
You must be signed in to change notification settings - Fork 0
Stella0621/markdown-practice
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published