| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- \section{\de{Neues Projekt erstellen}\en{Create new project}}
- \label{project:new}
- \subsection{\de{Mit der Kommandozeile}\en{Using the commandline}}
- \begin{itemize}
- \item \textbf{\de{Sie haben noch kein lokales Projekt?}\en{You have no local project?}}
- \\ \tUseAllSteps{} (a) \de{bis}\en{til} (f)
- \item \textbf{\de{Sie haben ein lokales Projekt, aber es ist nicht mit GIT verwaltet?}\en{You have a local project but it is not managed by GIT?}}
- \\ \tUseSteps{} (b), (d), (e) \tAnd{} (f)
- \item \textbf{\de{Sie haben ein lokales GIT-Projekt?}\en{You have a local GIT-project?}}
- \\ \tUseSteps{} (b) \tAnd{} (f)
- \end{itemize}
- \begin{DE}
- Für das Beispiel wird der Account \placeholder{myAccount} und der Projekt-Name \placeholder{myProject} angenommen.
- Die \placeholder{grünen} Teile der Beispiele müessen durch die zu Ihnen passenden Werte ersetzt werden.
- \end{DE}
- \begin{EN}
- The Examples uses the account \placeholder{myAccount} and the project name \placeholder{myProject}.
- The parts printed in \placeholder{green} have to be replaced by values according to your account / project.
- \end{EN}
- \begin{enumerate}
- \item \de{Ordner für das Projekt erstellen:}\en{Create a folder for the new project:}
- \codeline{mkdir \placeholder{myProject}}
- \item \de{Ordner für das Projekt betreten:}\en{Enter the folder for the new project:}
- \codeline{cd \placeholder{myProject}}
- \item \de{Einige Dateien anlegen:}\en{Create some files:}
- \codeline{echo '\placeholder{My Project}' $>$ README.md}
- \item \de{GIT Initialisieren.}\en{Initialize GIT.}
- \codeline{git init}
- \item \de{Die Dateien dem neuen GIT Repository hinzyfügen:}\en{Add the files to the new GIT Repository:}
- \codeline{git add~.}
- \item \de{Projekt zum Server senden.}\en{Send new Project to server.}
- \codeline{git push --set-upstream git@git.informatik.uni-rostock.de:\placeholder{myAccount}/\placeholder{myProject} master}
- \end{enumerate}
- \newpage
- \subsection{\de{Mit GIT Vorlagen}\en{With GIT examples}}
- \begin{itemize}
- \item
- \de{Klicken Sie oben links auf \var{Projects}.
- }\en{Click on \var{Projects} on the top left side.}
- \de{Es erscheint das Projektauswahlmenü.
- }\en{It appears a menu.}
- \includegraphics[width=\linewidth]{images/newProject/projectsHeaderWithMenu.png}
- \item
- \de{Im darauf erscheinenden Menü klicken Sie auf \var{your projects}
- }\en{Click on \var{your projects} in the appearing menu.}
- \de{Es erscheint die Liste ihrer Projekte.
- }\en{It appears the list of your projects.}
- \item \tClickOn{new project}
- \de{am rechten Rand.
- }\en{on the right side.}
- \de{Es erscheint die Projekt-Erstellen-Auswahl.
- }\en{It appears the selection page for a new project.}
- \includegraphics[width=\linewidth]{images/newProject/newProjectSelector.png}
- \item \tClickOn{Create blank project}.
- \includegraphics[width=\linewidth]{images/newProject/projectsTemplate.png}
- \item
- \de{Geben Sie ein Namen für Ihr Projekt im Feld \var{Project name} ein.
- }\en{Enter a name for your project in the box \var{Project name}.}
- \item
- \de{Sie können eine kurze Beschreibung Ihres Projektes im Feld \var{Project description} angeben.
- }\en{You may add a short description for your project in the box \var{Project description}.}
- \item
- \de{Aktivieren Sie das Häkchen \var{Initialize repository with a README}, damit sie ein nicht leeres Repository zum Auschecken haben.
- }\en{Activate the checkbox \var{Initialize repository with a README}. So you have a non empty Repository and may check it out to your computer.}
- \item \tClickOn{Create project}
-
- \de{Es erscheint die Übersichtsseite des neuen Projektes.
- }\en{It appears the overview of your new project.}
- \de{Nächster Schritt ist, ihr neues Repository auf Ihren Computer zu clonen. (Kapitel \ref{project:clone})
- }\en{Next step is cloning your Repository. (Chapter \ref{project:clone})}
- \end{itemize}
|