14
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

gitでプロジェクト毎に設定を変更したい場合

Last updated at Posted at 2014-06-19

追記

git config


$ git init
$ git config user.name "your name"
$ git config user.email "your mail address"

Old

config

各プロジェクトの直下にある .git/config に設定を書けばよい.

  • hogeプロジェクトでローカルな設定をしたい場合.

$ cd hoge
$ emacs .git/config
  • ユーザ名・メールアドレスを設定

[user]
  name = your name
  email = your mail address
14
16
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?