git分布式版本管理使用

Posted wang-sai-sai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git分布式版本管理使用相关的知识,希望对你有一定的参考价值。



git下载地址:

https://pc.qq.com/detail/13/detail_22693.html

常用git命令
git config --global user.name "wss"

git config --global user.email 408777632@qq.com

进入某个文件夹 : git init 初始化

git clone http://git.en8.top:39080/eluson/web_home_code.git

密码 ******

git remote add originhttp://git.en8.top:39080/eluson/web_home_code.git
和远程仓库建立联系

git add .
添加到暂存区 ‘.‘表示全部变更

git commit -m ‘测试‘
提交 到本地仓库

git push
推送到远程仓库

三合一命令:
git add . && git commit -m "提交" && git push

git pull 从远程仓库获取文件更新到本地

cd 文件夹名称 进入某个文件夹
pwd 获取当前目录

git remote -v 查看当前与本地有联系的远程分支
git remote remove [name] 删除某与本地有联系的远程分支

 云仓库:

http://git.en8.top:39080/eluson/web_home_code

以上是关于git分布式版本管理使用的主要内容,如果未能解决你的问题,请参考以下文章

Git分布式版本管理工具基本使用方法

Linux | 分布式版本控制工具Git版本管理 + 远程仓库克隆

使用git管理文件版本

git开发使用和常用命令

git分布式版本管理使用

Git版本管理工具使用