This topic contains 6 replies, has 0 voices, and was last updated by August Li 12 years ago.
-
AuthorPosts
-
October 31, 2012 at 1:52 pm #4827
trimbleeCan the SuiteCloud IDE be used for code versioning?
Anyone using anything else for versioning?
Thanks,
Evan
This is a cached copy. Click here to see the original post. -
November 1, 2012 at 5:53 am #4828
roberthRE: Code Versioning?
I use git for versioning all my code with Bitbucket hosting my repo as a private repo. This allows me to work from wherever I need while still maintaining document history. Plus its light weight, can integrate nicely with eclipse and is extremely well documented.
If you’ve never heard of bitbucket, check them out: https://bitbucket.org/ (I’d also recommend checking out their other products such as JIRA for bug tracking)
-
November 1, 2012 at 6:50 am #4829
BT_WillListRE: Code Versioning?
The IDE can’t per se. You can integrate the IDE with several other versioning providers using Eclipse plugins (we use SVN).
I haven’t found a way yet of determining which version of a document is present in the file cabinet of your netsuite instance. Does anyone have any thoughts on how this might be done?
-
November 1, 2012 at 7:02 am #4830
roberthRE: Code Versioning?
For our purposes we assumed everything was at base version 1. Then as changes are made the versions are incremented accordingly.
Keep in mind though that source code versioning is different then document versioning and having a mutually inclusive solution may not provide the level of control you are looking for. Documents (word, excel etc) are often stored in a binary format that will prevent a diff from being generated that makes any human sense. The only way to use a source versioning system like git to track document changes is to have all of your documents in plain text.
That being said, document control systems are available as well. Google docs can do it, same with Sharepoint and Atlassian’s Confluance.
-
November 2, 2012 at 11:53 am #4831
coreyRE: Code Versioning?
Originally posted by trimblee
View Post
Can the SuiteCloud IDE be used for code versioning?
Anyone using anything else for versioning?
Thanks,
Evan
We use SVN and I use an Eclispe Plugin called Subclispe. Works fine.
-
November 5, 2012 at 12:26 pm #4832
John MenerickI use a similar setup to roberth’s but utilize Github.
-
November 5, 2012 at 4:54 pm #4833
August LiRE: Code Versioning?
If you are using CVS or SVN, a possible workaround is to enable $Revision$ in your source code comment so that you can at least see the version in your source code from the file cabinet, not that elegant, but better than nothing. http://svnbook.red-bean.com/en/1.4/s….keywords.html
Other than that, there is a file compare function that lets you compare the current file in editor against the copy in file cabinet but it works for a single file at a time.
Originally posted by BT_WillList
View Post
The IDE can’t per se. You can integrate the IDE with several other versioning providers using Eclipse plugins (we use SVN).
I haven’t found a way yet of determining which version of a document is present in the file cabinet of your netsuite instance. Does anyone have any thoughts on how this might be done?
-
AuthorPosts
You must be logged in to reply to this topic.