Git Product home page Git Product logo

acl2-deprecated's Introduction

Merged ACL2+Books Git Repository

Warning -- experimental, unofficial, unsanctioned, etc.

This repository is intended only for evaluation of how hard it would be to migrate acl2-books and acl2-devel from Google Code to Github.

Creation notes

 # convert acl2-books/acl2-devel to git
 git svn clone \
   --stdlayout \
   --prefix='svn/' \
   http://acl2-books.googlecode.com/svn \
   acl2-books.git | tee acl2-books.clone.log

 git svn clone \
   --stdlayout \
   --prefix='svn/' \
   http://acl2-devel.googlecode.com/svn \
   acl2-devel.git | tee acl2-devel.clone.log

 # prepare new repository for the merge
 git init new
 cd new
 touch temp.txt
 git add temp.txt
 git commit -m "temporary commit"
 git rm temp.txt
 git commit -m "remove temporary file"

 # bring in both repositories
 git remote add books ../acl2-books
 git remote add devel ../acl2-devel
 git fetch

 # merge full history of acl2-books and move it to books/
 git merge books/master
 mkdir books
 git add books
 git mv `ls -1  | grep -v books` books
 git mv .gitignore books
 git commit -m "move merged books into books subdirectory"

 # merge full history of acl2-devel
 git merge devel/master

 # upload to github (after creating acl2.git repo there)
 git remote add origin https://github.com/jaredcdavis/acl2.git
 git push -u origin master

acl2-deprecated's People

Contributors

ragerdl avatar jaredcdavis avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.