当前位置: 首页 > 工具软件 > OSCGit > 使用案例 >

osc的git服务器简单使用。

周宏伯
2023-12-01

1、创建本地仓库

mkdir dir
cd dir
git init    初始化仓库

 

2、创建远程仓库

进入远程仓库去创建

3、关联本地仓库与远程仓库

git remote add osc git::...     osc是远程服务器别名,git::...指远程仓库git地址

 

4、基本使用

1、添加修改文件等
2、使用git add ... 添加文件到索引(git rm/mv 移除/移动)
3、使用 git commit -m "注释" file  来提交
4、使用 git push osc 来提交到远程仓库

这里只是简单介绍下,详细的使用参考 http://git.oschina.net/oschina/git-osc/wikis/Home

 类似资料: