✨
Architect's Cookbook
  • Effective Architect's Cookbook
  • 🎯What is an Architect?
    • Definitions
    • Duties of an Architect
    • Architects and the project's lifecycle
  • 🧩Technologies
    • Autonomous Vehicles
      • ROS
    • Cloud
      • Azure
        • Identities and Governance
          • Authentication and Authorization
        • Storage
        • Compute
          • Application
        • Virtual Networking
        • Monitoring
        • Backup
        • Migration / Hybrid
        • Data Integration
        • Learning
          • Azure AZ-104
      • Microservices
  • ⚙️Methods and Tools
    • Agile
    • Knowledge Management
      • Best Practices
      • Documentation as Code
    • Legal
    • Documentation
      • Templates
    • Domain Driven Design
    • Tools
      • Enterprise Architect
      • draw.io
      • git
  • 🤹‍♀️Human Skills
    • Daily Routine
    • Leadership
    • Mindfulness
    • Neuro-linguistic programming (NLP)
    • Non Violent Communication (NVC)
  • 📚Recommended Reading
    • Architecture Frameworks
    • References
    • Books
Powered by GitBook
On this page

Was this helpful?

  1. ⚙️Methods and Tools
  2. Tools

git

Previousdraw.ioNextDaily Routine

Last updated 4 years ago

Was this helpful?

  • Git Flight Rules - use case based Git tutorial -

create a new repository then duplicate your code from last project to it.

git clone --bare https://github.com/exampleuser/old-repository.git

cd old-repository.git
git push --mirror https://github.com/exampleuser/new-repository.git

cd ..
rm -rf old-repository.git

Source:

https://github.com/k88hudson/git-flight-rules
https://help.github.com/articles/duplicating-a-repository/