Добавить чистый репозиторий в качестве удаленного репозитория к нашему оригинальному репозиторию. Давайте добавим репозиторий hello.git к нашему оригинальному репозиторию.
cd hello
git remote add shared ../hello.git| #Customize BASH PS1 prompt to show current GIT repository and branch. | |
| #by Mike Stewart - http://MediaDoneRight.com | |
| #SETUP CONSTANTS | |
| #Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
| #I don't remember where I found this. o_O | |
| #Reset | |
| Color_Off="\[\033[0m\]" # Text Reset | |
| #!/system/bin/sh | |
| ###This script should be run via curl: | |
| #sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
| ###or via wget: | |
| #sh -c "$(wget -qO- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
| ###or via fetch: | |
| #sh -c "$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
| # | |
| ###As an alternative, you can first download the install script and run it afterwards: |
| http://archives.seul.org/or/relays/Aug-2010/msg00034.html | |
| http://archives.seul.org/or/relays/Aug-2010/msg00034.html | |
| http://archives.seul.org/or/talk/Jun-2005/msg00223.html | |
| http://archives.seul.org/or/talk/Jun-2005/msg00223.html | |
| http://en.wikipedia.org/wiki/Standard_streams | |
| http://en.wikipedia.org/wiki/Standard_streams | |
| http://epic.org/privacy/cookies/flash.html | |
| http://epic.org/privacy/cookies/flash.html | |
| http://forums.sun.com/thread.jspa | |
| http://forums.sun.com/thread.jspa |
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
| { | |
| "emojis": [ | |
| {"emoji": "👩👩👧👧", "name": "family: woman, woman, girl, girl", "shortname": ":woman_woman_girl_girl:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F467", "html": "👩‍👩‍👧‍👧", "category": "People & Body (family)", "order": ""}, | |
| {"emoji": "👩👩👧👦", "name": "family: woman, woman, girl, boy", "shortname": ":woman_woman_girl_boy:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F466", "html": "👩‍👩‍👧‍👦", "category": "People & Body (family)", "order": ""}, | |
| {"emoji": "👩👩👦👦", "name": "family: woman, woman, boy, boy", "shortname": ":woman_woman_boy_boy:", "unicode": "1F469 200D 1F469 200D 1F466 200D 1F466", "html": "👩‍👩‍👦‍👦", "category": "People & Body (family)", "order": ""}, | |
| {"emoji": "👨👩👧👧", "name": "family: man, woman, girl, girl", "shortname": ":man_woman_girl_girl:", "unicode": "1F468 200D 1F469 200D 1F467 200D 1F467", "html": "👨‍👩&z |
Initialize Git: git init
et everything ready to commit: git add .
et custom file ready to commit: git add index.html
ommit changes: git commit -m "Message"
ommit changes with title and description: git commit -m "Title" -m "Description..."