github

【1】
repository 仓库

star 收藏

fork复制克隆项目

pull request :王五复制别人张三(forked from )的项目,改动后发起pull request请求,张三感觉还不错合并到原仓库中

watch 关注

lssue 问题
发现代码bug,但是目前没有成行代码,需要讨论时使用:
就是你开源了一个项目,别人发现你的项目中有bug,或者哪些地方不好,它就可以给I你提个lssus,即问题,提的问题多了也就是lssues,然后你看到这问题可以足一去修复,修复好了就可以一个个的close掉

配置
git config --global core.autocrlf false
git config --global core.safecrlf false

---

---

git config --list

---------------------------------------------------------------------------------------------------------

鼠标右键 git bash here 或者在本地项目文件夹鼠标右键git bash here 

cd 项目

git config --global user.name 'shywangpan'
git config --global user.email '77673031@qq.com'

git init (创建.git文件夹)   初始化
touch 1.php
git add 1.php [git add --all]
git commit -m '描述'
git push /?git push -u origin master

--------------------------------------------------------------------------------------------------------------
cd d:www
git clone https://github.com/shywangpan/xxx.git下载远程项目到本地
cd d:www/xxx


shywangpan
77673031@qq.com.
0**9


cd
git init
git add git status
git commit -m '...'
git push
git status

 

【2】创建仓库/创建新项目

说明:一个git库(仓库)对应一个开源项目

1点击小猫->start a project 

原文地址:https://www.cnblogs.com/finddata/p/10421481.html