- Git download
- Tex studio ~ latex editor
- Miktex ~ latex compiler
sudo apt-get install git
sudo apt-get install texlive
sudo apt-get install texlive-lang-<YOUR_LANG> eg. install texlive-lang-german
I have no idea what Im doing...
sudo apt-get install texlive-full
sudo apt-get install texstudio
Add the following to ~./bashrc to display the current branch
# show git branch name
force_color_prompt=yes
color_prompt=yes
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[0$
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
unset color_prompt force_color_prompt
- git clone https://your-repository.com
- add files
- git status
- git add "files.bla"
- git status
- git commit -m "Your commit message"
- git config --global user.email "[email protected]"
- git config --global user.name "Your Name"
- git push