linux下git使用教程
时间: 2023-05-01 07:00:30 浏览: 159
git使用教程
1. 安装git:在终端中输入 "sudo apt-get install git"
2. 配置用户名和邮箱:输入 "git config --global user.name "你的用户名"" 和 "git config --global user.email "你的邮箱""
3. 创建代码仓库:在项目目录下输入 "git init"
4. 添加文件:输入 "git add 文件名" 或 "git add ."
5. 提交更改:输入 "git commit -m "提交信息""
6. 推送到远程仓库:输入 "git push origin master" (假设你的远程仓库名为origin,分支名为master)
7. 从远程仓库拉取:输入 "git pull origin master"
这些是基本的git操作,如果需要更多操作,请结合git官网文档查询。
阅读全文