-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
28 lines (15 loc) · 1008 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
JAVASCRIPT:
If you want to contribute to the javascript in this project, download Firebug addon for Firefox and enable the console. There in the console you can see debug messages, benchmark info, and javascript errors.
GIT:
To make git easier you can add aliases to the command line interface.
Assuming you have git installed, open a terminal and run the following commands:
cd ~/
pwd
This will tell you what directory the .gitconfig file is in, navigate there and open .gitconfig file. Append the following to your .gitconfig file:
[alias]
unstage = reset HEAD
cap = "!f(){ git commit -m \"$*\" && git push -u origin sandbox; }; f"
ass = !git add * && git status -s
Save and close. Now you can do the following:
git ass <-- adds all modified files to the staging area and lists their status
git cap this is my commit message <-- commits the staging area to the repo, with the message 'this is my commit message', then pushes the repo to origin master (our master repo hosted on github)