Friday, June 8, 2012

Using Git for code.google.com in windows Computer

1. First create an account on code.google.com
   It then generate username and password.
2. Then install git for windows.
3. Now in git bash (command line) go to the folder in which local folder your project is in.
4. Give command for clone (SVN CHECKOUT)

git clone https://username@code.google.com/p/Project_Name/

and

git clone https://code.google.com/p/Project_Name/ 

5. First initialization of repo

git init

6.  Now add the file you need to upload.

git add *.java
git add *.txt
git add *.c
git add *.cpp


7. Now commit these code.

git commit

*there are types on commit.So read it in http://git-scm.com


8. Add the remote origin

git remote add origin https://code.google.com/p/you-project-name

9. Finally, Push the code to google code

git push orgin --all

It will then ask for username and password.

Give that which we have at the registration to code.google.com


And now everything is done.



How to Generate and use the ssh key on Gerrit, github.io, gitlab, and bitbucket.

 Details can be found here -