So i'm trying to set up git and i'm a little confused. Do i install the github desktop client or use the command line? What are the implications (if there are any)?
For further actions, you may consider blocking this person and/or reporting abuse
So i'm trying to set up git and i'm a little confused. Do i install the github desktop client or use the command line? What are the implications (if there are any)?
For further actions, you may consider blocking this person and/or reporting abuse
Idris Kelani -
ryad -
Arinze Chinweuba -
JSWORLD Conferences -
Once suspended, itchyonion will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, itchyonion will be able to comment and publish posts again.
Once unpublished, all posts by itchyonion will become hidden and only accessible to themselves.
If itchyonion is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Jon Obi.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag itchyonion:
Unflagging itchyonion will restore default visibility to their posts.
Top comments (4)
It depends what you want to learn. I'd suggest to learn the command line and then decide if you still need the GUI.
The desktop client just simplifies a few things. Are you on Windows?
Oh, Okay. So i'm not really missing much with the GUI??. Yes, i'm on windows.
The GUI is just a easier way to work with Git for beginners but I'd suggest to take the hard mile and learn the CLI. Just makes working with git much faster afterwards.
Let me know if you need some help!
If you decide not to use the GUI, I also suggest you to create a SSH Key and register it on Github.
If you're on Windows 10 you can use the preinstalled SSH Client for that.
You don't need to set a password for the SSH key, just skip it with ENTER.
You can then add the key to Github in your user settings.
You get your public SSH key via
Short explanation: A SSH key is a generated key which replaces the password input by registering a private key (your key which you should never share, and a key which is public therefor "public key").
C:\Users\your_user_name\.ssh\id_rsa.pub
is the public keyC:\Users\your_user_name\.ssh\id_rsa
is the secret key (keep it private and safe)Here my friend, I wrote a post about a simple Git + SSH setup:
dev.to/bdbch/setting-up-ssh-and-gi...