安装git客户端
进入官网,点击右侧下载windows版本的软件包
·
·
·
·
·
如果下载慢的话,给一个传送门,可以快速下载:
·
·
·
·
双击安装
一直点击下一步就可,安装位置可以自己选择一下
Github创建仓库
填写项目名称以及base 描述
·
在git安装目录双击启动git bash
·
·
使用cd 命令 转移到预上传的项目的目录下
·
输入pwd查看当前文件夹位置
使用如下命令创建git仓库
先设置email和username:
git config --global user.email 'your email'
git config --global user.name 'your name'
创建本地仓库并与github仓库关联
git init #将该文件夹变成Git可以管理的仓库
git add . #将所有文件提交到暂存区
git commit -m '说明' #提交到版本库中
git remote add origin https://github.com/ikm565/PyQt-QQ.git
#将本地仓库与GitHub网站的仓库进行关联。
github仓库链接在这:
·
·
·
在将本地仓库与GitHub网站上的仓库进行关联后,便可进行推送了,但是在进行推送时,GitHub网站上的仓库并非是空的,因此需要将两者进行合并才行。
git pull --rebase origin master #合并
git push -u origin master #推送
再次查看仓库,已经有了项目:
如果更新了项目,通过以下命令进行维护:
git add -A #将文件的修改上传到暂存区
git commit -m '说明' #提交到本地仓库
git push origin master #推送到GitHub仓库
附上我的构建过程:
pwd
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git remote add origin https://github.com/ikm565/PyQt-QQ.git
fatal: remote origin already exists.
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git remote add origin https://github.com/ikm565/PyQt-QQ.git
fatal: remote origin already exists.
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git pull --rebase origin master
fatal: 'pwd' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git init
Reinitialized existing Git repository in D:/workspace/python Workspace/py-communicate-final/.git/
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git add .
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git commit -m 'first git'
On branch master
nothing to commit, working tree clean
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git init
Reinitialized existing Git repository in D:/workspace/python Workspace/py-communicate-final/.git/
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git init
Initialized empty Git repository in D:/workspace/python Workspace/py-communicate-final/.git/
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git add .
warning: LF will be replaced by CRLF in .gitignore.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .idea/inspectionProfiles/profiles_settings.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in Dialog_add.ui.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in frist.qrc.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in group.ui.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in login.ui.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in main_interface.ui.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in single_person.ui.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in web绔?.idea/dbnavigator.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in web绔?.idea/flasky.iml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in web绔?.idea/misc.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in web绔?.idea/modules.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in web绔?.idea/vcs.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in web绔?.idea/workspace.xml.
The file will have its original line endings in your working directory
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git commit -m 'first git'
[master (root-commit) 21e64c4] first git
83 files changed, 5155 insertions(+)
create mode 100644 .gitignore
create mode 100644 .idea/inspectionProfiles/profiles_settings.xml
create mode 100644 .idea/misc.xml
create mode 100644 .idea/modules.xml
create mode 100644 .idea/pyqt5-QQ.iml
create mode 100644 .idea/workspace.xml
create mode 100644 Dialog_add.py
create mode 100644 Dialog_add.ui
create mode 100644 frist.qrc
create mode 100644 group.py
create mode 100644 group.ui
create mode 100644 image/Icon_head.jpeg
create mode 100644 image/Icon_head.png
create mode 100644 image/Icon_logger.png
create mode 100644 image/Icon_user.png
create mode 100644 image/QQ1.jpg
create mode 100644 image/QQicon.ico
create mode 100644 image/contact_green.png
create mode 100644 image/icon.jpg
create mode 100644 image/myicon_1.jpeg
create mode 100644 image/myicon_1.png
create mode 100644 image/partjob.png
create mode 100644 image/qq.jpeg
create mode 100644 image/wechat.png
create mode 100644 login.py
create mode 100644 login.ui
create mode 100644 main_interface.py
create mode 100644 main_interface.ui
create mode 100644 res/0.jpg
create mode 100644 res/1.jpg
create mode 100644 res/10.jpg
create mode 100644 res/11.jpg
create mode 100644 res/12.jpg
create mode 100644 res/13.jpg
create mode 100644 res/14.jpg
create mode 100644 res/15.jpg
create mode 100644 res/16.jpg
create mode 100644 res/16.png
create mode 100644 res/17.jpg
create mode 100644 res/18.jpg
create mode 100644 res/19.jpg
create mode 100644 res/2.jpg
create mode 100644 res/20.jpg
create mode 100644 res/21.jpg
create mode 100644 res/22.jpg
create mode 100644 res/23.jpg
create mode 100644 res/24.jpg
create mode 100644 res/25.jpg
create mode 100644 res/3.jpg
create mode 100644 res/4.jpg
create mode 100644 res/5.jpg
create mode 100644 res/6.jpg
create mode 100644 res/7.jpg
create mode 100644 res/8.jpg
create mode 100644 res/9.jpg
create mode 100644 res/default.ico
create mode 100644 res/log.ico
create mode 100644 server.py
create mode 100644 server_downloads/0.jpg
create mode 100644 server_downloads/1.jpg
create mode 100644 server_downloads/13.jpg
create mode 100644 server_downloads/4.jpg
create mode 100644 server_downloads/6.jpg
create mode 100644 server_downloads/7.jpg
create mode 100644 single_person.py
create mode 100644 single_person.ui
create mode 100644 test/test.py
create mode 100644 test/test2.py
create mode 100644 "web\347\253\257/.idea/dbnavigator.xml"
create mode 100644 "web\347\253\257/.idea/flasky.iml"
create mode 100644 "web\347\253\257/.idea/misc.xml"
create mode 100644 "web\347\253\257/.idea/modules.xml"
create mode 100644 "web\347\253\257/.idea/vcs.xml"
create mode 100644 "web\347\253\257/.idea/workspace.xml"
create mode 100644 "web\347\253\257/__init__.py"
create mode 100644 "web\347\253\257/config.py"
create mode 100644 "web\347\253\257/register/__init__.py"
create mode 100644 "web\347\253\257/register/main_app.py"
create mode 100644 "web\347\253\257/register/templates/change.html"
create mode 100644 "web\347\253\257/register/templates/change_after.html"
create mode 100644 "web\347\253\257/register/templates/change_sign.html"
create mode 100644 "web\347\253\257/register/templates/loginin.html"
create mode 100644 "web\347\253\257/register/templates/regist.html"
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git remote add origin https://github.com/ikm565/PyQt-QQ.git
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git pull --rebase origin master
fatal: couldn't find remote ref master
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git push -u origin master
Enumerating objects: 88, done.
Counting objects: 100% (88/88), done.
Delta compression using up to 8 threads
Compressing objects: 100% (85/85), done.
Writing objects: 100% (88/88), 437.98 KiB | 13.27 MiB/s, done.
Total 88 (delta 14), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (14/14), done.
To https://github.com/ikm565/PyQt-QQ.git
* [new branch] master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git ass -A
git: 'ass' is not a git command. See 'git --help'.
The most similar commands are
add
askpass
lfs
stash
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git add -A
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git commit -m 'first git'
On branch master
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ ^C
20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$