You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2023/06/21 21:36:35 UTC

[arrow] branch main updated: GH-36207: [MATLAB] Add MATLAB autosave files (`.asv`) to the `.gitignore` (#36208)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new cefbdd7488 GH-36207: [MATLAB] Add MATLAB autosave files (`.asv`) to the `.gitignore` (#36208)
cefbdd7488 is described below

commit cefbdd7488609000f5ae117bcb5ed6272be142ae
Author: Kevin Gurney <kg...@mathworks.com>
AuthorDate: Wed Jun 21 17:36:29 2023 -0400

    GH-36207: [MATLAB] Add MATLAB autosave files (`.asv`) to the `.gitignore` (#36208)
    
    ### Rationale for this change
    
    By default, MATLAB will [periodically create backup files](https://www.mathworks.com/company/newsletters/articles/automatically-save-backup-m-files-with-the-matlab-editor.html) for files that are currently open in the MATLAB Editor. These files have a default file extension of `.asv`. To prevent these backup files from accidentally being committed to version control, it would be helpful to add `.asv` files to the `.gitignore` for the MATLAB interface.
    
    ### What changes are included in this PR?
    
    1. MATLAB autosave files (`.asv`) have been added to the `.gitignore` for the MATLAB interface
    
    ### Are these changes tested?
    
    1. Yes. Manually verified that files with filenames of the form `<filename.asv>` under the `matlab` folder are not tracked by Git.
    
    ### Are there any user-facing changes?
    
    No.
    * Closes: #36207
    
    Authored-by: Kevin Gurney <kg...@mathworks.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 matlab/.gitignore | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/matlab/.gitignore b/matlab/.gitignore
index 564bb0c51a..26dca0d362 100644
--- a/matlab/.gitignore
+++ b/matlab/.gitignore
@@ -22,3 +22,5 @@ build/
 
 # MEX files
 *.mex*
+# MATLAB autosave files
+*.asv