Git -For beignner (Tutorial) -- Part1
1.
Create a free Github
account:
2.
Login to Github
3.
Create an Repository
A
repository is usually used to organize a single project. Repositories can
contain folders and files, images, videos, spreadsheets, and data sets –
anything your project needs.
4.
We will create
hello-world
5.
Github will provide the
copy-paste url for cloning repository. We will try to clone to our linux
platform and use it from there.
[rprasad@vm ~]$ mkdir
git-repos
[rprasad@vm ~]$ cd
git-repos/
[rprasad@vm git-repos]$ git
clone https://github.com/rajeshp2408/hello-world.git Cloning into 'hello-world'...
remote: Counting objects: 3, done.
Unpacking objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
[rprasad@vm git-repos]$ ls hello-world/
README.md
to be continued...
Comments
Post a Comment