PDA

View Full Version : How to configure Git in Linux?



addisoncave
09-02-2016, 07:15 AM
Hi Guys,
I'm developing a private project using Github and now I want to add my partner to this project and let his Linux PC co-write the code for my git. he's already sign up in git hub and I've add him as a contributor in my git respostery, what to do next? How to configure Git in the Linux. I've never worked on Linux system neither did he. but some one approach us to use Linux for programming, so we did. Now how to configure git in Linux.
I've a window PC and Net beans IDE already has git feature, so i never need to configure it. But he's working in eclipse (his choice)

elenajayden
09-07-2016, 05:30 AM
Installing and configuring Git on Linux is a very straightforward process as Git was natively developed for the Linux platform.

jackthomas087
09-08-2016, 03:08 AM
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com

JennyBrighton
09-08-2016, 03:12 AM
Installing and configuring Git on Linux is a very straightforward process as Git was natively developed for the Linux platform.