2x1=10

because numbers are people, too
Persönliches
Fotografie
Programmierung
    • Git-Beispielkonfiguration

      Die benutzer­spez­i­fis­che, glob­ale Kon­fig­u­ra­tion von Git befind­et sich im Home-Verze­ich­nis eines Nutzers und heißt .gitconfig.
      Um schnell loszule­gen, hier eine Beispielkon­fig­u­ra­tion für getrack­te Kopi­en von Dateien, Zeile­nen­dan­pas­sung, eine glob­ale Datei mit Ignori­er­regeln, VIM als Edi­tor und far­bige Aus­gabe.

      [user]
      	name = Max Mustermann
      	email = max@mustermann.de
      [core]
      	autocrlf = true
      	excludesfile = ~/.gitignore
      	editor = vim
      
      	renames = copies
      [color]
      	diff = auto
      	status = auto
      	interactive = auto
      	branch = auto
      

      Wer will (oder zu faul zum Suchen ist), kann alles eben­falls über die Kom­man­dozeile ein­tra­gen (lassen):

      git config --global user.name "Max Mustermann" 
      git config --global user.email max@mustermann.de
      git config --global color.diff auto
      git config --global color.status auto
      git config --global color.branch auto
      git config --global color.interactive auto
      git config --global diff.renames copies
      git config --global core.excludesfile '~/.gitignore'
      git config --global core.editor 'vim'
      

      Und ab dafür.

      April 2nd, 2011 GMT +2 von
      Markus
      2011-04-2T00:18:04+02:00 2011-04-2T00:18:57+02:00 · 0 Kommentare
      git
      Version Control

      Hinterlasse einen Kommentar

      Hier klicken, um das Antworten abzubrechen.

    1. « newer
    2. 1
    3. …
    4. 35
    5. 36
    6. 37
    7. 38
    8. 39
    9. 40
    10. 41
    11. 42
    12. 43
    13. older »
    • Kategorien

      • .NET
        • ASP.NET
        • Core
        • DNX
      • Allgemein
      • Android
      • Data Science
      • Embedded
      • FPGA
      • Humor
      • Image Processing
      • Kalman Filter
      • Machine Learning
        • Caffe
        • Hidden Markov Models
        • ML Summarized
        • Neural Networks
        • TensorFlow
      • Mapping
      • MATLAB
      • Robotik
      • Rust
      • Signal Processing
      • Tutorial
      • Version Control
    • Neueste Beiträge

      • Summarized: The E-Dimension — Why Machine Learning Doesn’t Work Well for Some Problems?
      • Use your conda environment in Jupyter Notebooks
      • Building OpenCV for Anaconda Python 3
      • Using TensorFlow’s Supervisor with TensorBoard summary groups
      • Getting an image into and out of TensorFlow
    • Kategorien

      .NET Allgemein Android ASP.NET Caffe Core Data Science DNX Embedded FPGA Hidden Markov Models Humor Image Processing Kalman Filter Machine Learning Mapping MATLAB ML Summarized Neural Networks Robotik Rust Signal Processing TensorFlow Tutorial Version Control
    • Tags

      .NET Accelerometer Anaconda Bitmap Bug Canvas CLR docker FPGA FRDM-KL25Z FRDM-KL26Z Freescale git Gyroscope Integration Drift Intent J-Link Linear Programming Linux Magnetometer Matlab Mono Naismith OpenCV Open Intents OpenSDA Optimization Pipistrello Player/Stage PWM Python Sensor Fusion Simulink Spartan 6 svn tensorflow Tilt Compensation TRIAD ubuntu Windows Xilinx Xilinx SDK ZedBoard ZYBO Zynq
    • Letzte Kommetare

      • Lecke Mio bei Frequency-variable PWM generator in Simulink
      • Vaibhav bei Use your conda environment in Jupyter Notebooks
      • newbee bei Frequency-variable PWM generator in Simulink
      • Markus bei Using TensorFlow’s Supervisor with TensorBoard summary groups
      • Toke bei Using TensorFlow’s Supervisor with TensorBoard summary groups
    • Blog durchsuchen

    • April 2011
      M D M D F S S
          Nov »
       123
      45678910
      11121314151617
      18192021222324
      252627282930  
    • Self

      • Find me on GitHub
      • Google+
      • Me on Stack­Ex­change
      • Ye olde blog
    • Meta

      • Anmelden
      • Beitrags-Feed (RSS)
      • Kommentare als RSS
      • WordPress.org
    (Generiert in 0,448 Sekunden)

    Zurück nach oben.