ubuntu系统安装git以及基本命令

前端之家收集整理的这篇文章主要介绍了ubuntu系统安装git以及基本命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装

sudo apt install git


配置账号

git config --global user.email "-----@qq.com"
git config --global user.name "-----"


首次初始化

git init


添加文件

git add README.md

提交修改
git commit -m "first commit"

设置提交的远程路径,后面不用在设置了
git remote add origin https://github.com/gjq246/pythontest.git

提交到服务器
git push -u origin master


从服务器更新下来

git pull origin master

查看状态 git status

原文链接:https://www.f2er.com/ubuntu/353271.html

猜你在找的Ubuntu相关文章