Giter VIP home page Giter VIP logo

git-identity's Introduction

git-identity

You often use Git in different contexts, like at work and for open-source projects. You may then want to use different user names/email pairs to identify yourself.

This is not an important part of your work, and setting this up should be really fast. That's where git-identity comes in: setting up your identity information only takes one command with it.

Note: Identities are stored in the global git config. Using an identity copies the setting in the local repo git configuration. If you are changing the global config for one identity does NOT propagate the changes to the local repos. You will have use git identity --update in the repo folder to update the identity.

Installing

Simply link or copy the git-identity in a directory that's in your PATH, Git will pick it up and make it available as git identity.

$ ln -s git-identity ~/bin/git-identity

Under Windows, go to System > Advanced System Parameters > Environment Variable. Find the "Path" entry under system variables and add the path to where you downloaded git-identity.

Then you may setup a default identity with the following command (see Usage for more information):

$ git identity --define default Me [email protected]

To get bash completion, just source the git-identity.bash-completion file in your initialization scripts, such as .bashrc.

To get zsh completion, move the git-identity.zsh-completion file to a location present in your $FPATH, renaming the file to _git-identity.

You can also use basher to install git-identity:

$ basher install madx/git-identity

Usage

Add an identity:

$ git identity --define <identity name> <user name> <user email> [<ssh-file>] [<gpgkeyid>]

Add a GPG key to the identity (see GPG specific information below)

$ git identity --define-gpg <identity name> <gpgkeyid>
Added GPG key DA221397A6FF5EZZ to [default] user <[email protected]> (GPG key: DA221397A6FF5EZZ)

Add a SSH key to the identity

$ git identity --define-ssh <identity name> <ssh-file>
Added SSH key id_rsa_anotheraccount to [default] user <[email protected]> (SSH key: id_rsa_anotheraccount)

Print the current identity:

$ git identity
Current identity: [default] user <[email protected]>

Change identity:

$ git identity user2
Using identity: [default2] user2 <[email protected]>

Update identity:

$ git identity --update
Using identity: [user] First Last <[email protected]> (SSH key: id_rsa_user_new_key)
These are the changes:
1,2c1,2
<   core.sshcommand ssh  -i ~/.ssh/id_rsa_user
<   user.email [email protected]
---
>   core.sshcommand ssh  -i ~/.ssh/id_rsa_user_new_key
>   user.email [email protected]

List all identities:

$ git identity --list
Available identities:
[default] user <[email protected]>
[default2] user2 <[email protected]>

Listing raw identities:

$ git identity --list-raw
default
default2

Deleting an identity:

$ git identity --remove <identity name>

Printing the raw identity (for use in scripts)

$ git identity --print
$ git identity --print <identity name>

Priniting the local settings

$ git identity --get-settings
core.sshcommand ssh -i ~/.ssh/id_rsa_user
user.email [email protected]
user.identity user
user.name First Last

Retriving GIT_SSH_COMMAND or running command with that in the environment:

$ git identity -c my_other_identity
GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa_myotheridentity"

$ git identity -c my_other_identity git clone [email protected]:me/myrepo.git
Cloning into 'myrepo'...

Setting up GPG

More information about how to use GPG with git-identity may be found in GPG_SETUP.md

Setting up SSH

If you have a valid SSH key associate to the agent you do not have to do anything beside git identity --define-ssh <identity name> <ssh-file>.

This sets core.sshCommand="ssh -i ~/ssh/ssh-file" in the local git config when using that identity

Creating a new identity

    ssh-keygen -t rsa -b 4096 -C "yourname@yourdomain" -f ~/.ssh/id_rsa_anotheraccount
ssh-add id_rsa_anotheraccount

Debugging a ssh connection problem

git identity --define-ssh <identity name> <ssh-file> <verbosity>

With verbosity=1 it will use ssh -v. With verbosity=2 it will use ssh -vvv.

git-identity's People

Contributors

chriscinelli avatar eggbean avatar hugot avatar jceb avatar madx avatar motorrat avatar sadstag avatar simplydanny avatar somini avatar webmaniak avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

git-identity's Issues

A happy path for installation on Linux

I have to install git-identity on many boxes because it is just too useful!! :-)
To avoid figuring/typing the right commands here is the one-liner I have written:

cd ~ && git clone https://github.com/madx/git-identity.git && sudo ln -
s ~/git-identity/git-identity /usr/local/bin/git-identity && sudo chmod ugo+x !$

You might consider adding this to the README.md as the happy path for installation on Linux.
Creating this as an Issue instead of a pull request because it might be worth discussing/correcting first.

sshCommand='' when choosing identity

Hey,

When I set my identity with git identity $IDENTITY it also sets sshCommand to the empty string in the .git/config, and thus prevents me from push/pulling.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.