Every time I use github, I clone it from a remote repository and then branch off before starting work. At that time, the procedure was as follows. ① URL copy on github (red frame in the image below)
② Delete the previously cloned folder
③ Launch gitbush and execute the git clone URL
command
To be honest, it's annoying. I want to make it easy. When I looked it up, there was a way to do the above operation on atom, so I will summarize it easily.
・ Those who want to clone a remote repository on github just by operating from atom ・ Those who want to create a new repository and link it with Atom
・ Windows 10 ・ Atom 1.48.0
This is the same as ① described above
github: clone
(can be executed with alt + G)When you execute step ④, you will be prompted to enter clone from
and To directory
(red frame in the image below).
Enter the URL copied in step ① in clone from
Specify the location (path) you want to clone in To directory
When you execute clone
after inputting each, the repository is cloned to the specified location.
I have referred to the HP of the following people, so I will post it. -[GitHub] Introduction of "clone" command to copy repository ・ [Qiita] How to relink atom and newly created repository (github)
Recommended Posts