我是靠谱客的博主 清脆蜻蜓,最近开发中收集的这篇文章主要介绍使用git创建仓库,并上传代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

为什么80%的码农都做不了架构师?>>>   hot3.png

1.创建仓库

112113_SSiT_2270118.png

2.上传代码:

(1)在项目的根目录,初始化新版本库

git init

(2)在根目录创建.gitignore文件,设置要忽略的文件或文件夹 

vi .gitignore

(3)在.gitignore文件中写入要忽略的文件或文件夹,例如:

#built application files
*.apk
*.ap_
# files for the dex VM
*.dex
# Java class files
*.class
# generated files
bin/
gen/
# Local configuration file (sdk path, etc)
local.properties
# Windows thumbnail db
Thumbs.db
# OSX files
.DS_Store
# Eclipse project files
.classpath
.project
# Android Studio
*.iml
.idea
#.idea/workspace.xml - remove # and delete .idea if it better suit your needs.
.gradle
build/
build-outputs
out/
/*/*/build
/*/*/production
*.iws
*.ipr
*~
*.swp
*.trace
*.[ao]
*.log
captures/
.vscode/

freeline.py
freeline/
freeline_core/
freeline.zip

/CtripMain/src/ctrip/business/controller/MyTourApp.java
freeline_project_description.json

(4)添加新文件到版本库

git add .

(5)提交

git commit-m "message"

(6)添加远程仓库的别名:git remote add <别名> <远程仓库的URL>,例如:

git remote add origin https://github.com/johngef/test2.git

(7)推送到远程库:

git push -u origin master

 

转载于:https://my.oschina.net/gef/blog/805630

最后

以上就是清脆蜻蜓为你收集整理的使用git创建仓库,并上传代码的全部内容,希望文章能够帮你解决使用git创建仓库,并上传代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部