Discussion:
OK to submit tar file in the "handin" folder
(too old to reply)
Michael Terry
2011-07-12 20:10:22 UTC
Permalink
A number of people are having problems submitting via the handin folder.
This appears to be due to them exporting .svn folders (which then
confuses subversion).

There are a couple of ways to deal with this.

1). Via a terminal in the *handin* folder, *after* exporting your
project, do:

find . -name .svn -exec rm -Rf {} \;

This will delete all of the existing .svn folders in the handin folder.

2). Tar up your source and submit the tar file instead. We can handle
untar'ing it.

Michael
Ran Ma
2011-07-12 21:00:12 UTC
Permalink
Post by Michael Terry
A number of people are having problems submitting via the handin folder.
This appears to be due to them exporting .svn folders (which then
confuses subversion).
There are a couple of ways to deal with this.
1). Via a terminal in the *handin* folder, *after* exporting your
find . -name .svn -exec rm -Rf {} \;
This will delete all of the existing .svn folders in the handin folder.
2). Tar up your source and submit the tar file instead. We can handle
untar'ing it.
Michael
is it ok if i submit a .zip file? don't know how to tar
Michael Terry
2011-07-12 21:46:25 UTC
Permalink
Yeah, we can handle .zip.

Michael
Post by Ran Ma
Post by Michael Terry
A number of people are having problems submitting via the handin folder.
This appears to be due to them exporting .svn folders (which then
confuses subversion).
There are a couple of ways to deal with this.
1). Via a terminal in the *handin* folder, *after* exporting your
find . -name .svn -exec rm -Rf {} \;
This will delete all of the existing .svn folders in the handin folder.
2). Tar up your source and submit the tar file instead. We can handle
untar'ing it.
Michael
is it ok if i submit a .zip file? don't know how to tar
Loading...