Windows下如何如何将项目上传至GitHub?

安装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仓库

附上我的构建过程:

pwd20626@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 clean20626@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 directory20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git commit -m 'first git'
[master (root-commit) 21e64c4] first git83 files changed, 5155 insertions(+)create mode 100644 .gitignorecreate mode 100644 .idea/inspectionProfiles/profiles_settings.xmlcreate mode 100644 .idea/misc.xmlcreate mode 100644 .idea/modules.xmlcreate mode 100644 .idea/pyqt5-QQ.imlcreate mode 100644 .idea/workspace.xmlcreate mode 100644 Dialog_add.pycreate mode 100644 Dialog_add.uicreate mode 100644 frist.qrccreate mode 100644 group.pycreate mode 100644 group.uicreate mode 100644 image/Icon_head.jpegcreate mode 100644 image/Icon_head.pngcreate mode 100644 image/Icon_logger.pngcreate mode 100644 image/Icon_user.pngcreate mode 100644 image/QQ1.jpgcreate mode 100644 image/QQicon.icocreate mode 100644 image/contact_green.pngcreate mode 100644 image/icon.jpgcreate mode 100644 image/myicon_1.jpegcreate mode 100644 image/myicon_1.pngcreate mode 100644 image/partjob.pngcreate mode 100644 image/qq.jpegcreate mode 100644 image/wechat.pngcreate mode 100644 login.pycreate mode 100644 login.uicreate mode 100644 main_interface.pycreate mode 100644 main_interface.uicreate mode 100644 res/0.jpgcreate mode 100644 res/1.jpgcreate mode 100644 res/10.jpgcreate mode 100644 res/11.jpgcreate mode 100644 res/12.jpgcreate mode 100644 res/13.jpgcreate mode 100644 res/14.jpgcreate mode 100644 res/15.jpgcreate mode 100644 res/16.jpgcreate mode 100644 res/16.pngcreate mode 100644 res/17.jpgcreate mode 100644 res/18.jpgcreate mode 100644 res/19.jpgcreate mode 100644 res/2.jpgcreate mode 100644 res/20.jpgcreate mode 100644 res/21.jpgcreate mode 100644 res/22.jpgcreate mode 100644 res/23.jpgcreate mode 100644 res/24.jpgcreate mode 100644 res/25.jpgcreate mode 100644 res/3.jpgcreate mode 100644 res/4.jpgcreate mode 100644 res/5.jpgcreate mode 100644 res/6.jpgcreate mode 100644 res/7.jpgcreate mode 100644 res/8.jpgcreate mode 100644 res/9.jpgcreate mode 100644 res/default.icocreate mode 100644 res/log.icocreate mode 100644 server.pycreate mode 100644 server_downloads/0.jpgcreate mode 100644 server_downloads/1.jpgcreate mode 100644 server_downloads/13.jpgcreate mode 100644 server_downloads/4.jpgcreate mode 100644 server_downloads/6.jpgcreate mode 100644 server_downloads/7.jpgcreate mode 100644 single_person.pycreate mode 100644 single_person.uicreate mode 100644 test/test.pycreate mode 100644 test/test2.pycreate 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.git20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git pull --rebase origin master
fatal: couldn't find remote ref master20626@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 areaddaskpasslfsstash20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ git add -A20626@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 clean20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$ ^C20626@LAPTOP-T9NGUSPL MINGW64 /d/workspace/python Workspace/py-communicate-final (master)
$

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/508017.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

(pytorch-深度学习系列)pytorch卷积层与池化层输出的尺寸的计算公式详解

pytorch卷积层与池化层输出的尺寸的计算公式详解 注:这篇blog写的不够完善,在后面的CNN网络分析padding和stride详细讲了公式,感兴趣的可以移步这里:卷积神经网络中的填充(padding)和步幅(stride) 要设计卷积神经网络的结构&…

(pytorch-深度学习系列)使用Pytorch实现小型卷积神经网络网络

卷积层 卷积神经网络中每层卷积层(Convolutional layer)由若干卷积单元组成,每个卷积单元的参数都是通过反向传播算法最佳化得到的。卷积运算的目的是提取输入的不同特征,第一层卷积层可能只能提取一些低级的特征如边缘、线条和角…

RuntimeError: size mismatch, m1: [80 x 4], m2: [320 x 50] at ..\aten\src\TH/generic/THTensorMath.cpp

RuntimeError: size mismatch, m1: [80 x 4], m2: [320 x 50] at …\aten\src\TH/generic/THTensorMath.cpp:41 使用pytorch进行深度学习的训练会出现这种问题,原因是fc全连接层的输入维度问题,由于输入是二维的数据,很多时候在输入全连接层…

idea创建springboot项目,一直在reading pom.xml

problem:遇到的问题 idea创建springboot项目,一直在reading pom.xml 解决方法有三种: (1)修改windows配置文件 c;\windows\System32\drivers\etc\hosts将12.0.0.1 localhost前的注释符号#去掉 (2&#x…

springboot 项目实战 基本框架搭建(IDEA)

springboot 项目实战 基本框架搭建(IDEA) IDEA下载 我使用的是破解的专业版IDEA,使用权一直到2089年: 下载IDEA: 下载processional版本,然后百度搜索激活码即可概率激活,如果你不成功就多找几个激活码 配…

使用IDEA 连接mysql数据库,执行sql指令

使用IDEA 连接mysql数据库,执行sql指令 1 配置项目的SQL依赖 首先参考这篇博文,创建springboot的基本框架 在创建项目的过程中,需要选择SQL相关的依赖,如下: SQL勾选:MySQL Driver,JDBC API …

thymeleaf There was an unexpected error (type=Internal Server Error, status=500).

thymeleaf There was an unexpected error (typeInternal Server Error, status500). 使用thymeleaf依赖&#xff0c;无法访问html文件&#xff0c;解决方法有以下几种可能&#xff1a; 1. 未加载thymeleaf依赖&#xff0c;打开pom.xml&#xff0c;加入依赖&#xff1a; <…

org.attoparser.ParseException: Could not parse as expression: “

Caused by: org.attoparser.ParseException: Could not parse as expression: " {field: ‘id’, title: ‘ID’, fixed: ‘left’, unresize: true, sort: true} , {field: ‘number’, title: ‘学号’, edit: ‘number’, sort: true} , {field: ‘name’, title: ‘姓…

windows10 计算文件的HASH(SHA256\MD5等)

windows10 计算文件的HASH&#xff08;SHA256\MD5等&#xff09; certutil -hashfile .\文件名 带后缀 SHA256可选哈希算法参数&#xff1a;MD2 MD4 MD5 SHA1 SHA256 SHA384 SHA512

ubuntu给pip换源,给conda换源

ubuntu 给pip换源&#xff0c;给conda换源 //修改 ~/.pip/pip.conf (没有就创建一个)&#xff0c; 内容如下&#xff1a; [global] timeout 6000 index-url https://pypi.tuna.tsinghua.edu.cn/simple trusted-host pypi.tuna.tsinghua.edu.cn //给conda换源 conda config …

ubuntu怎么在jupyter notebook中引入anaconda虚拟环境

ubuntu怎么在jupyter notebook中引入anaconda虚拟环境 ~坑&#xff1a; 先activate visaul envirument 再打开jupyter notebook 是不行的 conda install nb_conda 也是不行的 正确做法&#xff1a; conda create -n your_env_name pythonX.X #创建环境 //先activate pytorch …

傅里叶变换原理解析

傅里叶变换原理解析 震动频率&#xff1a;节拍数/秒 矢量旋转频率&#xff1a;圈/秒傅里叶频域就是&#xff1a;音频信号波形以不同的频率旋转形成的图形的质心的坐标变化&#xff0c;即&#xff08;frequency, (x,y)&#xff09; &#xff08;其中实数为x轴坐标&#xff0c;虚…

(pytorch-深度学习系列)pytorch数据操作

pytorch数据操作 基本数据操作&#xff0c;都详细注释了&#xff0c;如下&#xff1a; import torch#5x3的未初始化的Tensor x torch.empty(5, 3) print("5x3的未初始化的Tensor:") print(x) print("******************************")#5x3的随机初始化的…

(pytorch-深度学习系列)pytorch中backwards()函数对梯度的操作

backwards()函数对梯度的操作 对于一个新的tensor来说&#xff0c;梯度是空的&#xff1b;但当对这个tensor进行运算操作后&#xff0c;他就会拥有一个梯度&#xff1a; x torch.ones(2, 2, requires_gradTrue) print(x) print(x.grad_fn)y x 2 print(y) print(y.grad_fn)…

(pytorch-深度学习系列)pytorch实现线性回归

pytorch实现线性回归 1. 实现线性回归前的准备 线性回归输出是一个连续值&#xff0c;因此适用于回归问题。回归问题在实际中很常见&#xff0c;如预测房屋价格、气温、销售额等连续值的问题。 与回归问题不同&#xff0c;分类问题中模型的最终输出是一个离散值。我们所说的图…

(pytorch-深度学习系列)pytorch线性回归的便捷实现

pytorch线性回归的便捷实现 继上一篇blog&#xff0c;使用更加简洁的方法实现线性回归 生成数据集&#xff1a; num_inputs 2 num_examples 1000 true_w [2, -3.4] true_b 4.2 features torch.tensor(np.random.normal(0, 1, (num_examples, num_inputs)), dtypetorch.f…

(pytorch-深度学习系列)pytorch实现对Fashion-MNIST数据集进行图像分类

pytorch实现对Fashion-MNIST数据集进行图像分类 导入所需模块&#xff1a; import torch import torchvision import torchvision.transforms as transforms import matplotlib.pyplot as plt import time import sys对数据集的操作&#xff08;读取数据集&#xff09;&#…

(pytorch-深度学习系列)使用softmax回归实现对Fashion-MNIST数据集进行分类-学习笔记

使用softmax回归实现对Fashion-MNIST数据集进行分类 import torch from torch import nn from torch.nn import init import numpy as np import sys读取数据集&#xff1a; mnist_train torchvision.datasets.FashionMNIST(root~/Datasets/FashionMNIST, trainTrue, downlo…

(pytorch-深度学习系列)pytorch实现多层感知机(手动定义模型)对Fashion-MNIST数据集进行分类-学习笔记

pytorch实现多层感知机对Fashion-MNIST数据集进行分类&#xff08;手动定义模型&#xff09; 多层感知机&#xff1a; 多层感知机在单层神经网络的基础上引入了一到多个隐藏层&#xff08;hidden layer&#xff09;。隐藏层位于输入层和输出层之间。 输入和输出个数分别为4和…

(pytorch-深度学习系列)pytorch实现多层感知机(自动定义模型)对Fashion-MNIST数据集进行分类-学习笔记

pytorch实现多层感知机&#xff08;自动定义模型&#xff09;对Fashion-MNIST数据集进行分类 导入模块&#xff1a; import torch from torch import nn from torch.nn import init import numpy as np定义数据集&#xff1a; class FlattenLayer(nn.Module): # 定义一个ten…