git把本地文件上传到github上的步骤

1.清除clean

2.返回上一级cd ..

3.克隆仓库地址git clone+地址

4.添加忽悠文件vim .gitignore

5查看cat .gitignore

6.进入到test,并且添加所有的文件:cd test    git add.

7.查看状态,绿色git status

8.提交git commit  -am "wangtingwx"

9.查看状态

10.放到github:   ----------git  push origin master

[email protected]/d/Documents/HBuilderProjects/weixin

$ clean

bash: clean: command not found

[email protected]/d/Documents/HBuilderProjects/weixin

$ clear

[email protected]/d/Documents/HBuilderProjects/weixin

$ cd ..

[email protected]/d/Documents/HBuilderProjects

$ git clone https://github.com/wangxiaoting666/test.git

Cloning into ‘test‘...

warning: You appear to have cloned an empty repository.

Checking connectivity... done.

[email protected]/d/Documents/HBuilderProjects

$ vim .gitignore

[email protected]/d/Documents/HBuilderProjects

$ cat .gitignore

node_modules

[email protected]/d/Documents/HBuilderProjects

$ cd test

[email protected]/d/Documents/HBuilderProjects/test(master)

$ git add .

warning: LF will be replaced by CRLF in node_modules/.bin/mime.

The file will have its original line endings in your working directory.

warning: LF will be replaced by CRLF in node_modules/accepts/HISTORY.md.

The file will have its original line endings in your working directory.

warning: LF will be replaced by CRLF in node_modules/accepts/LICENSE.

The file will have its original line endings in your working directory.

[email protected]/d/Documents/HBuilderProjects/test(master)

$ git status

On branch master

Initial commit

Changes to be committed:

(use "git rm --cached ..." to unstage)

new file:   .project

new file:   node_modules/.bin/mime

new file:   node_modules/.bin/mime.cmd

new file:   node_modules/accepts/HISTORY.md

new file:   node_modules/accepts/LICENSE

new file:   node_modules/accepts/README.md

new file:   node_modules/accepts/index.js

new file:   node_modules/accepts/package.json

[email protected]/d/Documents/HBuilderProjects/test(master)

$ git commit -am "wangtingwx"

[master (root-commit) 93dfc21] wangtingwx

warning: LF will be replaced by CRLF in node_modules/.bin/mime.

The file will have its original line endings in your working directory.

warning: LF will be replaced by CRLF in node_modules/accepts/HISTORY.md.

The file will have its original line endings in your working directory.

warning: LF will be replaced by CRLF in node_modules/accepts/LICENSE.

The file will have its original line endings in your working directory.

[email protected]/d/Documents/HBuilderProjects/test(master)

$ git status

On branch master

Your branch is based on ‘origin/master‘, but the upstream is gone.

(use "git branch --unset-upstream" to fixup)

nothing to commit, working directory clean

[email protected]/d/Documents/HBuilderProjects/test(master)

$ git push origin master

Username for ‘https://github.com‘: wangxiaoting666

Counting objects: 314, done.

Delta compression using up to 2 threads.

Compressing objects: 100% (302/302), done.

Writing objects: 100% (314/314), 284.07 KiB | 0 bytes/s, done.

Total 314 (delta 65), reused 0 (delta 0)

remote: Resolving deltas: 100% (65/65), done.

To https://github.com/wangxiaoting666/test.git

* [new branch]      master -> master

时间: 2024-10-13 04:47:24

git把本地文件上传到github上的步骤的相关文章

Windows下如何将一个文件夹通过Git上传到GitHub上(转)

在通过windows系统的电脑上写代码,需要将项目上传到GitHub上去.比如在Pycharm上写Django后端,整个项目是一个文件夹的形式,那么怎么才能这个文件夹通过Git命令上传到GitHub上呢? 以下给出详细步骤: 1.首先得安装git客户端 安装方法很简单,跟安装QQ之类的一样,进入官网:https://git-scm.com/ ,点击右侧下载windows版本的软件包,然后双击安装,一步一步下一步就可以了. 安装完成之后,在开始菜单可以看到如下就算是成功了: 此时,在任一文件夹上右

如何通过TortoiseGit(小乌龟)把本地项目上传到github上

1.第一步: 安装git for windows(链接:https://gitforwindows.org/)一路next就好了, 如果遇到什么问题可以参考我另外一篇文章~^ - ^ 2.第二步:安装小乌龟(我习惯把TortoiseGit叫成小乌龟,所以接下来所有的TortoiseGit我都代替为小乌龟啦) 小乌龟安装步骤(安装完小乌龟之后再安装语言包): 步骤我就不贴出来了,跟git一样一路next就OK了,我把安装需求的安装包贴在下面,可以参考一下~ 别忘记下载中文语言包(看到这里要注意呀 

使用git把项目上传到github上

常用的命令: git init  在当前目录新建一个Git代码库 git add [file1] [file2].....  添加指定文件到暂存区 git add . 添加当前目录的所有文件到暂存区 git commit -m [message] 提交暂存区到仓库区 git commit [file1] [file2]...-m [message]提交暂存区指定文件到仓库区 git push 上传本地库内容到远程仓库 git pull 取回远程库的最新内容,与本地库合并更新 git status

使用git将项目上传到github上

如何将自己完整的项目上穿到github上呢? 就像爱一个人一样,其实很简单...... 首先第一步,在github上创建一个秘钥:  话说怎么创建呢?如下: 在github首页中右侧小图标处点击设置(Settings),进入设置页面之后点击:SSH and GPG keys会进入设置秘钥页面: 之后再点击New SSH key新建秘钥:Title值随便填,Key填的是你获取到的秘钥 第二步就是获取秘钥了:   获取秘钥前先安装下git:(可以官网下,当然你比较懒的话也可以从我百度云当中拿)  

git 把本地创建的项目放到github上

很早之前就注册了Github,但对其使用一直懵懵懂懂,很不熟练.直到昨天做完百度前端技术学院的task,想把代码托管到Github上的时候发现自己对于Git的操作是如此之愚钝,所以今天决定把Git好好学习一遍,好让自己以后能更好地使用Github,主要还是通过Git教程 - 廖雪峰的官方网站来学习.简要步骤可以直接看最后的总结. Git的安装就不说了. 第一步:我们需要先创建一个本地的版本库(其实也就是一个文件夹). 你可以直接右击新建文件夹,也可以右击打开Git bash命令行窗口通过命令来创

把本地仓库工程上传到github上和从gitbu同步工程到本地

1.在本地产生秘钥和公钥 [[email protected] git_project]# ssh-keygen -t rsa -C "[email protected]@qq.com" Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): /root/.ssh/id_rsa #在这里输入rsa秘钥所在的目录 Enter passphrase (e

【重要】使用Git命令行上传到GitHub上

[本人GitHub账号:] 用户名:chenhongshuang 密码:shuangshuang6300 邮箱:[email protected] 进入GitHub账号后 1·新建项目文件名称例demo,并且点击[Branch:master 输入 gh-pages 后回车键]::: [建好以后必须在自己电脑的任意位置建"相同项目文件名称demo"] 2·cd进入本地新建的项目文件中执行:git init 3·把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记

利用git将本地的代码同步到github上

直接说步骤: 第一步:创建一个名为fileName的文件夹 执行命令:mkdir  fileName 第二步:进入到fileName这个文件夹 执行命令:cd fileName 第三步:将fileName这个文件夹变成可管理的仓库,生成.git文件  如果没有可能是文件夹被隐藏了,可以尝试执行命令:ls -ah  将文件变为可见 执行命令:git init 第四步:登录你的github账号,并创建一个空的仓库 第五步:在你本地的fileName中执行图中的指令(把一个已有的本地仓库与之关联,然后

如何将Android Studio的项目上传到Github上

VCS-->Import into version control-->Share Projection on Github 在弹出的对话框中输入相关信息 如果弹出一下错误: Please tell me who you are. Run git config --global user.email "[email protected]" ........ 解决办法: 在Git目录下打开git-base.ext输入以下命令: git config --global user