在VS2013中使用git進(jìn)行源代碼管理

git是一款非常流行的分布式版本控制系統(tǒng),使用Local Repository追蹤代碼的修改,通過Push和Pull操作,將代碼changes提交到Remote Repository,或從Remote Repository中獲取代碼的最新版本,實(shí)現(xiàn)團(tuán)隊源代碼的共享和管理。VS2013 集成了git插件,能夠使用git進(jìn)行源代碼管理,比如:Merge Branch,Code Review,Code Changes的Push和Pull等,這里簡單介紹一下git插件的使用。

一,創(chuàng)建Repository

在使用git之前,先創(chuàng)建Remote Repository,用于存儲源代碼

比如,Remote Repository的URL是 http://xxx/git/git_test

二,管理的TargetProject

1,在VS2013中創(chuàng)建Database Project,命名為db_test

2,將DB的Schema同步到Project中

選中Project,點(diǎn)擊-》Schema Compare,彈出一下窗口

  • 左邊是源(Source),右邊是Target,執(zhí)行Compare,將Source(DB)和Target(Project)進(jìn)行比較;
  • 點(diǎn)擊Update,更新Target;

三,將Project添加到git Repository

1,將Project添加到源代碼管理

 

2,選擇源代碼管理 git

第一個選項(xiàng)是TF 版本控制,第二個選項(xiàng)是Git,選擇Git。

四,切換到Team Explorer

1,點(diǎn)擊Home菜單,如果是初次使用,會提示“Install 3rd-party Git command prompt tools”,點(diǎn)擊“install”,按照 git 命令行工具。

在Project下面有Changes,Branches,Unsynced Commits 和 Settings 選項(xiàng),使用這些選項(xiàng)對Project進(jìn)行管理

網(wǎng)友評論