Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 924 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 924 Bytes

Common JS

When we figure out how to package ES6 we will...

Github

Because there's a single universal github setting per user on Mac OSX, we have to edit ./git/config to specify another github account.

Edit ./git/config after git init and before further git commands.

References

Example

.git/config

[user]
        name = [user-name]
        email = [email-address]
[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
        ignorecase = true
        sshCommand = ssh -i ~/.ssh/balmoral
[remote "origin"]
        url = [email protected]:[account-name]/[repository-name].git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
        remote = origin
        merge = refs/heads/master