git_gitea

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
Nächste ÜberarbeitungBeide Seiten der Revision
git [01/10/2022 - 10:25] thommie4git_gitea [03/10/2022 - 07:19] thommie4
Zeile 8: Zeile 8:
 ===== GIT ===== ===== GIT =====
  
-==== Basisfunktionen & Lokale Instanz ====+==== Basisfunktionen & lokale Instanz ====
  
   - Arbeitskopie = die echten Dateien, dynamisch   - Arbeitskopie = die echten Dateien, dynamisch
Zeile 93: Zeile 93:
 </code> </code>
  
-Zum master wechseln+Zum master bzw. main wechseln
  
 <code>''git checkout master'' <code>''git checkout master''
Zeile 225: Zeile 225:
 |  |  | |  |  |
  
-====== Atom ======+====== Repo duplizieren ======
  
-[[https://flight-manual.atom.io/|https://flight-manual.atom.io/]]+Create a bare clone of the repository.
  
-Globale Tastenkürzel+$ git clone --bare https://github.com/exampleuser/old-repository.git
  
-^Kürzel ^was machts ^Anmerkung | +Mirror-push to the new repository.
-|Ctrl-Shift-P |Kommando-Palette |  | +
-|Ctrl-T oder Ctrl-P |Suche nach Dateiname im Projekt |  | +
-|Ctrl-B |Suche nach Text in offenen Dateien im Projekt |  | +
-|Ctrl-F |Suche nach Text in allen offenen Dateien |  | +
-|Ctrl-Shift-F |Suche nach Text in alle Dateien im Projekt |  |+
  
-===== Atom Fenster ausserhalb des sichtbaren Bereiches =====+$ cd old-repository.git 
 +$ git push --mirror https://github.com/exampleuser/new-repository.git
  
-[[https://github.com/atom/atom/issues/6939|https://github.com/atom/atom/issues/6939]]+Remove the temporary local repository you created earlier.
  
-Workaround: +$ cd .
- +$ rm -rf old-repository.git
-''atom –clear-window-state '' +
- +
-oder +
- +
-ALT+TAB–>select atom ALT+space–> select maximize+
- +
-oder für Windows +
- +
-  * Select the Atom window (using Alt-Tab or mouse) +
-  * Open the context menu with Alt-Space. +
-  * Select move using “m” +
-  * Press any of the arrow keys. +
-  * The Atom window will now be possible to drag back to the main monitor using the mouse.+
  
 ====== Markdown ====== ====== Markdown ======
  • git_gitea.txt
  • Zuletzt geändert: 05/03/2024 - 10:52
  • von 127.0.0.1