Integrate your GIT repository with Visual Studio 2015
You can now easily use visual studio with your solution in GIT. You can Commi, pull, push ans run all source control commands with in your favourite IDE visual studio. You dont need to use any third party tools for that. Integration in so much easy just new steps.
1. Visual Studio-> Team-> Manage Connections
2. Then you can see team explorer
3. Under Local GIT repositories Click on clone
in there on first text box enter your GIT repository URL and the the second one add the local path and then click clone then It will promted to enter your credentails/
It will download the source code from GIT with source control binding. After that you can see all source control commands related GIT available in your visual studio.
I .Commit your changes locally
after you done with the changes when you right click on a file , project or solution you can find the Commit option as follows. This will commit your changes to local repository.
II .Sync your code with server code
Before pushing your code to online GIt repositor you need sync your local repository with server. For that you can use the option sync then pull.
III .push your changes to server
Then you can push your changes to server using push option
If you are someone familiar with TFS this is very smiliar to use.Even command names are bit different it does almst the same function
Comments
Post a Comment